home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / UTILITY / CITM24.ARJ / RUN.BAT < prev   
DOS Batch File  |  1991-03-26  |  3KB  |  45 lines

  1. echo off
  2. cls
  3. echo ┌────────────────────────────────────────────────────────────────┐
  4. echo │           ***  A demonstration of CITM 2.4  ***                │
  5. echo │                                                                │
  6. echo │ This demo will not work unless your default directory          │
  7. echo │ contains the following files:                                  │
  8. echo │                                                                │
  9. echo │ CITM.EXE           Main program                                │
  10. echo │ CITM.DOC           Documentation fro CITM 2.4                  │
  11. echo │ RUN.BAT            Batch file to run demo                      │
  12. echo │ COM.DIR            Data file used in the demo                  │
  13. echo │ EXE.DIR            "                                           │
  14. echo │                                                                │
  15. echo │ If these files are not in your default directory, please       │
  16. echo │ hit Ctrl-Break (Ctrl-C) now - otherwise:                       │
  17. echo └────────────────────────────────────────────────────────────────┘
  18. PAUSE
  19. CLS
  20. echo ┌────────────────────────────────────────────────────────────────┐
  21. echo │ Two files, COM.DIR and EXE.DIR, were previously obtained       │
  22. echo │ from various directories and then sorted by date.  We wish     │
  23. echo │ to use these two files to find the distribution of COM's       │
  24. echo │ and EXE's by year.                                             │
  25. echo │                                                                │
  26. echo │ In both of these files, the year is found at column 30 and     │
  27. echo │ is 2 characters wide.  The problem is solved simply by         │
  28. echo │ issuing the following command:                                 │
  29. echo │                                                                │
  30. echo │ CITM *.DIR 30 2                                                │
  31. echo └────────────────────────────────────────────────────────────────┘
  32. PAUSE
  33. echo 
  34. CITM *.DIR 30 2
  35. echo 
  36. PAUSE
  37. echo 
  38. echo ┌────────────────────────────────────────────────────────────────┐
  39. echo │ If you do a lot of work with text line sorters, CITM can       │
  40. echo │ help you extract information about the sorted result which     │
  41. echo │ was previously difficult or impractical to obtain.             │
  42. echo │                                                                │
  43. echo │ Read docs for details.                                         │
  44. echo └────────────────────────────────────────────────────────────────┘
  45.